home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / graphics.17 / graphics / graphics-0.17 / plot2tek / point.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-21  |  1.1 KB  |  31 lines

  1. /* This file is the point routine, which is a standard part of the plot
  2.    library.  It draws a point at the coordinate x,y. */
  3.  
  4. #include "sys-defines.h"
  5. #include "libplot.h"
  6.  
  7. int
  8. point (x, y)
  9.      int x, y;
  10. {
  11.   move (x, y);
  12.   cont (x, y);
  13.   return 0;
  14. }
  15.  
  16. /* libtek, a library of functions for tektronics 4010 compatible devices.
  17.    Copyright (C) 1989 Free Software Foundation, Inc.
  18.  
  19. libtek is distributed in the hope that it will be useful, but WITHOUT ANY
  20. WARRANTY.  No author or distributor accepts responsibility to anyone for the
  21. consequences of using it or for whether it serves any particular purpose or
  22. works at all, unless he says so in writing.  Refer to the GNU General Public
  23. License for full details.
  24.  
  25. Everyone is granted permission to copy, modify and redistribute libtek, but
  26. only under the conditions described in the GNU General Public License.  A copy
  27. of this license is supposed to have been given to you along with libtek so
  28. you can know your rights and responsibilities.  It should be in a file named
  29. COPYING.  Among other things, the copyright notice and this notice must be
  30. preserved on all copies.  */
  31.